home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / WWW / swish.11 / src / error.c < prev    next >
C/C++ Source or Header  |  1995-03-11  |  347b  |  20 lines

  1. /*
  2. ** Copyright (C) 1995, Enterprise Integration Technologies Corp.        
  3. ** All Rights Reserved.
  4. ** Kevin Hughes, kevinh@eit.com 
  5. ** 3/11/94
  6. */
  7.  
  8. #include "swish.h"
  9. #include "error.h"
  10.  
  11. /* Whoops, something bad happened...
  12. */
  13.  
  14. void progerr(errstring)
  15.      char *errstring;
  16. {
  17.         fprintf(stderr, "swish: %s\n", errstring);
  18.         exit(-1);
  19. }
  20.